home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmInput
- BackColor = &H0000FFFF&
- BorderStyle = 1 'Fixed Single
- Caption = "Taking Data From the User"
- ClientHeight = 5370
- ClientLeft = 870
- ClientTop = 1215
- ClientWidth = 6630
- Height = 5775
- Left = 810
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = INPUT.FRX:0000
- ScaleHeight = 5370
- ScaleWidth = 6630
- Top = 870
- Width = 6750
- Begin TextBox txtInput
- Height = 495
- Left = 2760
- TabIndex = 2
- Top = 3360
- Width = 2735
- End
- Begin CommandButton cmdCancel
- Caption = "&Cancel"
- Height = 495
- Left = 1560
- TabIndex = 1
- Top = 4680
- Width = 1215
- End
- Begin CommandButton cmdOK
- Caption = "&OK"
- Default = -1 'True
- Height = 495
- Left = 3240
- TabIndex = 0
- Top = 4680
- Width = 1215
- End
- Option Explicit
- Sub cmdCancel_Click ()
- frmInput.Hide
- End Sub
- Sub cmdOK_Click ()
- frmInput.Hide
- ggUserInput = txtInput.Text
- End Sub
-